home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Dealing with Change / Workplace Effectiveness: Dealing with Change.iso / pc / Alliance.Dxr / 00002_Alliance parent.ls < prev    next >
Encoding:
Text File  |  1998-03-05  |  5.4 KB  |  209 lines

  1. property machineData, timeDate, module, userArea, usedList, soundList, musicStart, musicTime
  2. global currSndVolume, gSep
  3.  
  4. on new me
  5.   set the userArea of me to [#main: #empty, #assessment: #empty, #tools: #empty, #changes: #empty]
  6.   set the usedList of me to [#assessment: 0, #tools: 0, #changes: 0]
  7.   set the soundList of me to [#assessment: [], #tools: [], #changes: []]
  8.   return me
  9. end
  10.  
  11. on getMachineDAta me
  12.   if the machineType = 256 then
  13.     set hardware to #IBM
  14.     set gSep to "\"
  15.   else
  16.     set hardware to #Mac
  17.     set gSep to ":"
  18.   end if
  19.   set vSound to the soundLevel
  20.   set vColors to the colorDepth
  21.   set the machineData of me to [#computer: hardware, #oldSound: vSound, #oldColors: vColors]
  22.   set vTime to the short time
  23.   set vDate to the short date
  24.   set the timeDate of me to [#time: vTime, #date: vDate]
  25. end
  26.  
  27. on setMachine me
  28.   if getProp(the machineData of me, #oldColors) <> 8 then
  29.     if getProp(the machineData of me, #computer) = #IBM then
  30.       alert("Please reset your monitor to 256 colors.")
  31.       quit()
  32.     else
  33.       set the colorDepth to 8
  34.     end if
  35.   end if
  36.   set currSndVolume to 5
  37.   set the soundLevel to currSndVolume
  38. end
  39.  
  40. on restoreMachine me
  41.   if getProp(the machineData of me, #oldColors) <> 8 then
  42.     if getProp(the machineData of me, #computer) = #Mac then
  43.       set the colorDepth to getProp(the machineData of me, #oldColors)
  44.     end if
  45.   end if
  46.   set the soundLevel to getProp(the machineData of me, #oldSound)
  47. end
  48.  
  49. on computerType me
  50.   return getProp(the machineData of me, #computer)
  51. end
  52.  
  53. on setModule me, thisModule
  54.   set the module of me to thisModule
  55.   setProp(the userArea of me, the module of me, #subMenu)
  56. end
  57.  
  58. on setUserArea me, thisActivity
  59.   setProp(the userArea of me, the module of me, thisActivity)
  60. end
  61.  
  62. on getUserArea me
  63.   set userLoc to getProp(the userArea of me, the module of me)
  64.   return userLoc
  65. end
  66.  
  67. on setSoundList me, thisList
  68.   if getProp(the soundList of me, the module of me) = [] then
  69.     setProp(the soundList of me, the module of me, thisList)
  70.   end if
  71. end
  72.  
  73. on goNarrator me, thisItem
  74.   sound playFile 2, "@/Media/Sound/" & thisItem & ".aif"
  75. end
  76.  
  77. on diskAudio me, thisItem
  78.   sound playFile 2, "@/Media/Sound/" & thisItem & ".aif"
  79. end
  80.  
  81. on bkgrdMusic me
  82.   set thisItem to #empty
  83.   case the module of me of
  84.     #main:
  85.       set thisItem to "Track06"
  86.     #assessment:
  87.       case getProp(the userArea of me, #assessment) of
  88.         #subMenu:
  89.           set thisItem to "Track11m"
  90.         #style:
  91.           set thisItem to "Track05"
  92.         #styleForm:
  93.           set thisItem to "Track05"
  94.         #history1:
  95.           set thisItem to "Track10"
  96.         #history2:
  97.           set thisItem to "Track10"
  98.         #reactions1:
  99.           set thisItem to "Track05"
  100.         #resources1:
  101.           set thisItem to "Track12m"
  102.         #resources2:
  103.           set thisItem to "Track12m"
  104.         #resources3:
  105.           set thisItem to "Track12m"
  106.         #fourCorners:
  107.           set thisItem to "Track06"
  108.       end case
  109.     #tools:
  110.       case getProp(the userArea of me, #tools) of
  111.         #subMenu:
  112.           set thisItem to "Track10"
  113.         #race:
  114.           set thisItem to "Track10"
  115.         #raceEnd:
  116.           set thisItem to "Track10"
  117.         #self1:
  118.           set thisItem to "Track05"
  119.         #self2:
  120.           set thisItem to "Track05"
  121.         #self3:
  122.           set thisItem to "Track05"
  123.         #nonpro2:
  124.           set thisItem to "Track11m"
  125.         #chefIntro:
  126.           set thisItem to "Track13r"
  127.         #chefEnd:
  128.           set thisItem to "Track12m"
  129.         #stages1:
  130.           set thisItem to "Track15v"
  131.         #plot:
  132.           set thisItem to "Track11m"
  133.         #paper:
  134.           set thisItem to "Track06"
  135.       end case
  136.     #changes:
  137.       case getProp(the userArea of me, #changes) of
  138.         #subMenu:
  139.           set thisItem to "Track12m"
  140.         #facts:
  141.           set thisItem to "Track02"
  142.         #feelings:
  143.           set thisItem to "Track15v"
  144.         #future2:
  145.           set thisItem to "Track11m"
  146.         #action:
  147.           set thisItem to "Track05"
  148.         #envision:
  149.           set thisItem to "Track10"
  150.       end case
  151.   end case
  152.   if thisItem <> #empty then
  153.     musicSpecs(me, thisItem)
  154.     sound playFile 2, "@/Media/" & thisItem & ".aif"
  155.   end if
  156. end
  157.  
  158. on musicSpecs me, trackName
  159.   case trackName of
  160.     "Track02":
  161.       set the musicTime of me to 60 * 195
  162.     "Track05":
  163.       set the musicTime of me to 60 * 187
  164.     "Track06":
  165.       set the musicTime of me to 60 * 133
  166.     "Track10":
  167.       set the musicTime of me to 60 * 153
  168.     "Track11m":
  169.       set the musicTime of me to 60 * 601
  170.     "Track12m":
  171.       set the musicTime of me to 60 * 546
  172.     "Track13r":
  173.       set the musicTime of me to 60 * 202
  174.     "Track14r":
  175.       set the musicTime of me to 60 * 140
  176.     "Track15v":
  177.       set the musicTime of me to 60 * 212
  178.   end case
  179.   set the musicStart of me to the ticks
  180. end
  181.  
  182. on checkMusic me
  183.   if the ticks > (the musicStart of me + the musicTime of me) then
  184.     bkgrdMusic(me)
  185.   end if
  186. end
  187.  
  188. on activate me
  189.   setProp(the usedList of me, the module of me, 1)
  190. end
  191.  
  192. on iAmActivated me
  193.   return getProp(the usedList of me, the module of me)
  194. end
  195.  
  196. on showProperties me
  197.   put "machineData:" && the machineData of me
  198.   put "computerType(gMasterData)... will return #Mac or #IBM"
  199.   put "timeDate:" && the timeDate of me
  200.   put "module:" && the module of me
  201.   put "userArea:" && the userArea of me
  202.   put "soundList:" && the soundList of me
  203. end
  204.  
  205. on getTimeDate me
  206.   set vDataString to getProp(the timeDate of me, #time) & "    " & getProp(the timeDate of me, #date)
  207.   return vDataString
  208. end
  209.